home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / grindr.zip / GRINDER.EXE / DATA.Z / SampleApplication.java < prev    next >
Text File  |  1996-06-29  |  483b  |  14 lines

  1. // SampleApplication.java    LPS 6/15/96
  2. // this is the classic "Hello world" program. A version of this is usually
  3. // offered by any new language proponents to give a small flavor of what
  4. // it takes to build a minimal application. Java does quit well, you think ?
  5. // NOTE !!! this class is subclassed off of Object. 
  6.  
  7. package sample.application;
  8.  
  9. class SampleApplication {
  10.     public static void main (String args[]) {
  11.         System.out.println("Hello World!");
  12.     }
  13. }
  14.